/**
 * Filter Everything block editor preview overrides.
 *
 * The shop template hides the filter sidebar until frontend JS toggles it open.
 * Force the sidebar and widget content visible while editing.
 */

.editor-styles-wrapper .wp-filter-sidebar,
.editor-styles-wrapper .wp-filter-sidebar.closed {
	display: block !important;
	flex-basis: 300px !important;
	height: auto !important;
	margin-right: 32px !important;
}

.editor-styles-wrapper .wp-filter-sidebar.closed .widget_wpc_filters_widget {
	opacity: 1 !important;
	height: auto !important;
}

.editor-styles-wrapper .wp-filter-sidebar .wp-fle-filters,
.editor-styles-wrapper .wp-filter-sidebar .wp-fle-calculator {
	visibility: visible !important;
	opacity: 1 !important;
	height: auto !important;
}

.editor-styles-wrapper .wpc-filters-widget-content.wpc-closed,
.editor-styles-wrapper .wp-block-gnist-fle-widget .wpc-filters-widget-content {
	display: block !important;
	height: auto !important;
	visibility: visible !important;
}
