.category-item.active,
.category-item:hover {
	background: #F59F24;
	color: #fff;
}
.category-item.active a,
.category-item.active a span,
.category-item:hover a,
.category-item:hover a span {
	color: #fff;
}
.categories {
	display: block;
	width: 100%;
	height: auto;
	margin: 20px 0;
	margin-top:0;
	margin-bottom: 40px;
	position: relative;
	overflow-x: hidden;
}
.category-list-wrap {
	display: flex;
	position: relative;
	overflow: auto;
	width: 100%;
	height: auto;
}
.categories::-webkit-scrollbar,
.category-list-wrap::-webkit-scrollbar {
	display: none;
}
.category-item:first-of-type {
	max-width: 100px;
	margin-left: 0;
}
.category-item:last-of-type {
	margin-right: 0;
}
.category-item {
	padding: 6px 12px;
	width: 190px;
	margin: 0 5px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
	color: #353431;
	background: #F3F3F3;
	border-radius: 25px;
	cursor: pointer;
	transition: all ease-in-out .2s;
}
.category-item a {
	width: 100%;
	height: auto;
}
.category-item a:active,
.category-item a:hover,
.category-item a:focus {
	text-decoration: none;
	outline: none;
}
.category-item span {
	font-size: 16px;
	font-family: "Montserrat";
	width: 100%;
	height: auto;
	display: block;
	text-align: center;
	color: #353431;
}
@media (max-width: 640px) {
	.category-list-wrap {
		width: 100%;
		min-width: 100%;
	}
	.category-item:first-of-type {
    width: fit-content;
    position: relative;
    display: flex;
    height: auto;
    text-align: center;
    padding: 6px;
	}
	.category-item:first-of-type a {
		width: 100px;
		height: 32px;
	}
	.category-item {
		width: fit-content;
		height: auto;
		max-height: 52px;
    padding: 6px;
	}
	.category-item a {
		width: 190px;
		height: 32px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: nowrap;
	}
	.category-item span {
		font-size: 16px;
	}
}