.custom-sort-drawer {
	max-width: 300px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.active .custom-sort-drawer {
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease;
}
#sort-button {
	color: var(--e-global-color-secondary);
}

#sort-button .elementor-button-icon svg {
	transform: rotate(0);
	transition: all 0.3s ease;
}

.active #sort-button .elementor-button-icon svg {
	transform: rotate(180deg);
	transition: all 0.3s ease;
}