#renderCanvas {
	touch-action: none;
	width: 100%;
	height: 100%;
}

#menu {
	position: absolute;
	background-color: var(--bs-dark);

	top: 0;
	left: 0;
}

#menu * {
	color: var(--bs-light);
}

#menuAccess {
	font-size: 20px;

	background-color: var(--bs-primary);
	background-image: linear-gradient(to right, var(--bs-primary) 50%, var(--bs-dark) 100%);
	padding: 1rem;
}

#menu_icoAccess {
	display: inline-block;
	transition: transform .5s;

	font-weight: bold;
	font-size: 1.25rem;
}

#menu:hover #menu_icoAccess {
	transform: rotateZ(45deg);
}

#menuBlock {
	transition: padding .5s, max-height .5s;

	padding: 0 1rem;
	max-height: 0;
	overflow: hidden;
}

#menu:hover #menuBlock {
	max-height: 100vh;
	padding: 1rem;
}

.menu_model, .menu_input {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;

	margin: .25rem 0;
}

.menu_model > label {
	width: 10rem;
}

.menu_input > label {
	width: 10rem;
}

#menu input, #menu select, #menu option {
	color: var(--bs-dark);
}

#menu input, #menu select {
	width: 8rem;
}