.appModal {
	border: none;
	padding: 0;
	border-radius: 4px;
	background-color: var(--background-color);
	color: var(--app-font-color);
	box-shadow:
		0 11px 15px -7px rgba(0, 0, 0, 0.2),
		0 24px 38px 3px rgba(0, 0, 0, 0.14),
		0 9px 46px 8px rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	max-height: calc(100vh - 64px);
	max-height: calc(100dvh - 64px);
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2000;
	width: 100%;

	&.appModal--sm {
		max-width: min(600px, calc(100vw - 64px));
	}

	&.appModal--md {
		max-width: min(960px, calc(100vw - 64px));
	}

	&.appModal--lg {
		max-width: min(1280px, calc(100vw - 64px));
	}

	&.appModal--xl {
		max-width: min(1920px, calc(100vw - 64px));
	}

	&.appModal--fullscreen {
		width: 100vw;
		height: 100vh;
		height: 100dvh;
		max-width: 100vw;
		max-height: 100vh;
		max-height: 100dvh;
		border-radius: 0;
		top: 0;
		left: 0;
		transform: none;
		margin: 0;
	}
}

.appModalBackdrop {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1999;
}

.appModalInner {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
}
