.page__title.page__title--category {
	display: flex;
	justify-content: space-between;
}

.category-controls {
	display: flex;
	gap: 1px;
	top: -15px;
    position: relative;

	opacity: 0;
	visibility: hidden;
}

.category-controls .category-controls__category {
	border-radius: var(--border-radius-pane);
	border: 1px solid var(--color-border);
	padding: 18px;
	color: white;
	font-size: 13px;

	font-weight: var(--font-weight--medium);
}

.category-controls .category-controls__close {
	border-radius: var(--border-radius-pane);
	border: 1px solid var(--color-border);
	width: 57px;

	position: relative;
}

.category-controls .category-controls__close a {
	width: 100%;
	height: 100%;
	display: block;
	z-index: 1;
	position: relative;
}

.category-controls .category-controls__close:before, 
.category-controls .category-controls__close:after {
	width: 22px;
	height: 1px;
	background-color: white;
	position: absolute;
	left: 50%;
	top: 50%;
	content: '';
}

.category-controls .category-controls__close:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.category-controls .category-controls__close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}