	
.category-list {
	cursor: default;

	position: relative;
	display: inline-flex;
	flex-direction: column;

	list-style: none;
	background-color: white;
	color: rgba(0, 0, 0, 0.85);

	padding: 0px;
	margin: 0px;
	z-index: 100;

	max-height: 70vh;
    overflow: auto;
    overflow-x: hidden;
}

.category-list p {
	margin: 0px;

	padding: 16px 18px;
	!width: 100%;
}

.category-list li {
	position: relative;
	cursor: pointer;

	display: inline-flex;
	justify-content: space-between;

	!padding: 16px 18px;
	margin: 0px 10px;
	border-left: 4px solid transparent;

	max-width: 200px;

	border-top: 1px solid rgb(235, 235, 235);
}

.category-list li img {
	pointer-events: all;
	padding: 0px 8px;

	transition: 0.2s;
	opacity: 0.7;
}

.category-list li img.cl-selected {
	border: 0px !important;
	background-color: transparent !important;
}

.category-list li:hover img, .cl-selected img {
	transform: rotate(90deg) scale(1.2);
	opacity: 1;
}

.category-list li b {
	font-weight: bold !important;
}

.category-list li div {
	position: absolute;
	top: 0px;
	left: 0px;

	width: 100%;
	height: 100%;
}

.category-list .cl-last {
	cursor: pointer;
}

.category-list .cl-title {
	position: relative;
	padding: 20px 20px 10px 20px;

	display: flex;
	flex-direction: column;
	align-items: center;
}


.category-list .cl-title .btn {
	margin-top: 5px;
	min-height: 30px !important;
}

.category-list .cl-title.cl-has-image {
	color: white;
	text-shadow: 0px 0px 3px rgba(0,0,0,0.75);
}

.category-list .cl-title b {
	font-weight: bold;
	text-transform: uppercase;
}

.category-list .cl-title a:hover {
	text-decoration: underline;
	color: var(--hl);
}

.category-list .cl-title .cl-bg-image {
	position: absolute;

	top: 0px;
	left: 0px;

	width: 100%;
	height: 100%;

	object-fit: cover;
	z-index: -1;

	border-bottom: 2px solid #2145a3;
}

.category-list.cl-odd {
	background-color: #e8effd;
}

.category-list.cl-odd li {
	border-top: 1px solid rgb(220, 220, 220);
}

.category-list .cl-selected, .category-list li:hover {
	border-left: 4px solid #FE9833;
	background-color: #e8effd;
}

.category-list.cl-odd .cl-selected, .category-list.cl-odd li:hover {
	background-color: rgba(255, 255, 255, 1);
}

.cmc-hidden {
	display: none;
}

.category-list .cl-bottom {
	border-top: 0px !important;
	pointer-events: none;
}

.category-list .cl-paginator {
	display: inline-flex;

	font-size: 13px;
	color: rgba(0, 0, 0, 0.65);

	padding-top: 10px;
}

.category-list .cl-back {
	display: none;
	font-size: 20px;

	opacity: 0.75;
	padding: 30px 20px 25px 20px;
}

.category-list .cl-back img {
	margin-right: 5px;
}

.category-list img {
	width: 20px;
	height: auto;
	aspect-ratio: 1 / 1;

	margin-left: 5px;
}

.category-list li img {
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
}

.category-list .cl-paginator:hover {
	text-decoration: underline;
}

#catalog_menu_container {
	position: fixed;
	top: 0px;
	left: 0px;

	width: 100%;
	height: 100%;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

#catalog_menu_container .wrapper {
	position: absolute;
	top: 120px;
	left: 10px;

	display: inline-flex;

	box-shadow: 11px 10px 14px -1px rgba(0,0,0,0.07);
	-webkit-box-shadow: 11px 10px 14px -1px rgba(0,0,0,0.07);
	-moz-box-shadow: 11px 10px 14px -1px rgba(0,0,0,0.07);

	border-radius: 4px;
	overflow: hidden;
}



@media screen and (max-width: 900px) {
	#catalog_menu_container .wrapper {
		width: calc(85% - 20px);
		height: 78%;
	}

	.category-list {
		display: none;
		max-height: 90vh;
	}

	.category-list.cl-focused {
		display: inline-flex;
		width: 100%;

		overflow: scroll;
	}

	.category-list .cl-title {
		margin-bottom: 10px;
	}

	.category-list.cl-odd {
		background-color: white;
	}

	.category-list.cl-odd .cl-selected, .category-list.cl-odd li:hover {
		background-color: #e8effd;
	}

	.category-list li {
		max-width: 100%;
	}

	.category-list .cl-back {
		display: inline-flex;
	}
}
