.window-open {

	position: absolute;
	top: 0;
	left: 0;
	display: none;
	background-color: #0006;
	height: 100vh;
	width: 100vw;
	z-index: 100;

}

.window {

	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, 100vh);
	box-shadow: 3px 4px 4px #000A;
	transition: transform 0.3s cubic-bezier(0, 0, 0.52, 1.49);
	z-index: 101;
	background-color: var(--bg);

}

#lang-window {

	border-spacing: 8px;
	border-collapse: separate;

	padding: 20px;
	max-height: 80vh;

}

.lang {

	table-layout: fixed;
	text-align: center;
	padding: 30px;
	font-size: 20px;
	border: 2px var(--highlight) solid;

}