._c-modal{
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: var(--z-modal);
	opacity: 0;
	background-color: rgba(var(--grey-60-rgb), 0.6);
	pointer-events: none;
	align-items: center;
	justify-content: center;
}
._c-modal.visible{
	display: flex;
}
._c-modal.events{
	pointer-events: all;
}
._c-modal.animate{
	opacity: 1;
}