html, body {
	width: 100%;
	height: 100%;
  margin: 0px;
  padding: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

html {
	flex-direction: column;
}

body {
	flex-direction: row;
	overflow: hidden;
  touch-action: none;
	background: #ffffff;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* #dashed_migration {
	margin: auto;
	display: block;
	width: 100% !important;
  height: 100% !important;
} */

#dashed_migration {
	margin: auto;
	display: block;
	width: 100vmin;
	height: 100vmin;
	max-width: 100%;
  max-height: 100%;
}

.optimizeSpeed{
	shape-rendering: optimizespeed;
}

#export-menu {
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-family: monospace;
  width: 250px;
  height: auto;
  min-height: 100px;
  background: white;
  border: solid black 1px;
	padding: 10px 20px;
	box-shadow: 0 0 30px rgba(0,0,0,0.7);
	z-index: 99;
}

.export-menu-item {
	display: flex;
  flex-direction: column;
	align-items: center;
}

.export-menu-item:not(:first-child) {
	border-top: solid black 1px;
}

.export-menu-item button,
.export-menu-item input[type=number] {
	font-family: monospace;
	background-color: white;
	color: black;
  border: solid black 1px;
	padding: 5px 10px;
}

.export-menu-item button:active,
.export-menu-item button:hover {
	background-color: black;
	color: white;
}

.export-menu-item p {
	text-align: center;
}

.export-menu-item p.note {
	font-size: 0.7em;
}

#export-menu > * {
	padding: 10px;
}

.export-menu-item > * {
	margin: 5px;
}

#export-menu-X {
	position: absolute;
	top: 0;
	right: 0;
	height: 20px;
	width: 20px;
	margin: 8px;
	padding: 0;
	border: none;
	background: white;
}

.hidden {
  display: none !important;
}
