/* todo: convert file to Tailwind after audience builder is fixed for TW */
.FilterEditor__modal {
	/* relative w-[90vw] max-w-[1200px] h-[90vh] */
	position: relative;
	width: 90vw;
	max-width: 1200px;
	height: 90vh;
	overflow-y: auto;

	/* bg-white rounded-md border border-gray-300 dark:border-gray-800 shadow-2xl */
	background-color: #fff;
	border-radius: 0.375rem;
	border: 1px solid #d1d5db;
	border-color: #d1d5db;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.FilterEditor__modal-overlay {
	/* fixed z-[999999] inset-0 bg-gray-500 bg-opacity-25 transition-opacity flex items-center justify-center */
	position: fixed;
	z-index: 999999;
	inset: 0;
	background-color: rgba(209, 213, 219, 0.75);
	transition-property: opacity;
	transition-duration: 300ms;
	display: flex;
	align-items: center;
	justify-content: center;
}

.FilterEditor__audience-wrap {
	/* mx-3 my-4 */
	margin-left: 0.75rem;
	margin-right: 0.75rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
