.ModalApplication {
	display: grid;
	place-items: center;
	height: 100%;
	pointer-events: all;
	font-family: Arial, Helvetica, sans-serif;
	overflow: auto;
}

.ModalApplication-window {
	border: 1px solid var(--clp-color-gray-5);
	box-shadow: 0 3px 6px var(--clp-color-gray-5);
	border-radius: 10px;
}

.ModalApplication-content {
	width: 730px;
	height: 550px;
	overflow: hidden;
	background: white;
	border-radius: 15px;
}

@media (max-width: 730px) {
	.ModalApplication-window {
		height: 100%;
		width: 100%;
		border-radius: 0;
		border: none;
		box-shadow: none;
	}
	.ModalApplication-content {
		width: 100%;
		height: 100%;
		border-radius: 0;
	}
}

