.product-categories-menu {
	--brand-color: #4f3258;
	--brand-color-highlight: #71487c;
	--secondary-brand-color: #945fa5;
	--secondary-brand-color-highlight: #b378c6;
}

/* HORIZONTAL MENU */

.product-categories-menu {
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.product-categories-menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
}

.product-categories-menu li.active > a {
	font-weight: bold;
}

.product-categories-menu a {
	text-wrap: nowrap;
	text-decoration: none;
	display: block;
	margin: 0;
	padding: 5px 1rem;
}

.product-categories-menu a:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

.product-categories-menu ul.product-categories-submenu {
	background-color: var(--secondary-brand-color);
	display: none;
	position: absolute;
	z-index: 10000000;
}

.product-categories-menu li.product-category-item:hover ul.product-categories-submenu {
	display: block;
}

/*
	DROPDOWN MENU
 */

.potiskarium-dropdown-menu,
.potiskarium-dropdown-menu .dropdown-menu-checkbox {
	display: none;
}

.potiskarium-dropdown-menu .potiskarium-dropdown-menu-button {
	display: flex;
	align-items: center;
}

.potiskarium-dropdown-menu .dropdown-menu-checkbox-label,
.potiskarium-dropdown-menu .dropdown-menu-checkbox-label-close {
	display: inline-block;
	background-image: url('img/menu.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 5px;
}

.potiskarium-dropdown-menu .potiskarium-dropdown-menu-header {
	padding: 10px;
}

.potiskarium-dropdown-menu .dropdown-menu-checkbox-label-close {
	background-image: url('img/close.svg');
}

.potiskarium-dropdown-menu .potiskarium-dropdown-menu-content {
	position: fixed;
	z-index: 999999;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	padding: 10px;
	background-color: var(--brand-color);
	overflow: auto;
	transform: translateX(-100%);
	transition: transform 0.5s ease;
}

.potiskarium-dropdown-menu .dropdown-menu-checkbox:checked + .potiskarium-dropdown-menu-content {
	transform: translateX(0);
}

/*
	RESPONSIVENESS
 */

/* Medium devices */
@media (max-width: 1000px) {

	.collapsible-categories-menu {
		width: auto !important;
	}
}

/* Small devices */
@media (max-width: 768.98px) {

	.hide-on-mobile {
		display: none;
	}

	.potiskarium-dropdown-menu {
		display: block;
	}

	.has-global-padding {
		padding-right: 15px !important;
		padding-left: 15px !important;
	}

}
