.popup {
	position: fixed;
	display: none;
	justify-content: center;
	align-items: center;

	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

	z-index: 99;
}

	.popup.active {
		display: flex;
	}

	.popup > div
	{
		display: flex;
		flex-direction: column;

		box-shadow: 0 0 .25rem .1rem var(--bs-dark);
		border-radius: 1rem;
		background-color: var(--bs-light);

		width: 80%;
		height: 80%;
	}